--- /dev/null
+/*
+ Read Yahoo Geocoded files.
+
+ Copyright (C) 2005 Robert Lipe, robertlipe@usa.net
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA
+
+ */
+
+#include "defs.h"
+#include "xmlgeneric.h"
+
+static FILE *ifd;
+static waypoint *wpt_tmp;
+
+#define MYNAME "yahoo"
+
+static
+arglist_t yahoo_args[] = {
+ {0, 0, 0, 0, 0}
+};
+
+static xg_callback wpt_s, wpt_lat, wpt_lon, wpt_e;
+
+static xg_tag_mapping gl_map[] = {
+ { wpt_s, cb_start, "/ResultSet/Result" },
+ { wpt_lat, cb_cdata, "/ResultSet/Result/Latitude" },
+ { wpt_lon, cb_cdata, "/ResultSet/Result/Longitude" },
+ { wpt_e, cb_end, "/ResultSet/Result" },
+ { NULL, 0, NULL}
+};
+
+static void
+yahoo_rd_init(const char *fname)
+{
+ xml_init(fname, gl_map, NULL);
+}
+
+static void
+yahoo_read(void)
+{
+ xml_read();
+}
+
+static void
+yahoo_rd_deinit(void)
+{
+ xml_deinit();
+}
+
+static void
+yahoo_wr_init(const char *fname)
+{
+ fatal("Writing file of type %s is not supported\n", MYNAME);
+}
+
+void wpt_s(const char *args, const char **unused)
+{
+ wpt_tmp = waypt_new();
+}
+
+void wpt_e(const char *args, const char **unused)
+{
+ waypt_add(wpt_tmp);
+ wpt_tmp = NULL;
+}
+
+void wpt_lat(const char *args, const char **unused)
+{
+ wpt_tmp->latitude = atof(args);
+}
+
+void wpt_lon(const char *args, const char **unused)
+{
+ wpt_tmp->longitude = atof(args);
+}
+
+ff_vecs_t yahoo_vecs = {
+ ff_type_file,
+ { ff_cap_read },
+ yahoo_rd_init,
+ yahoo_wr_init,
+ yahoo_rd_deinit,
+ NULL,
+ yahoo_read,
+ NULL,
+ NULL,
+ yahoo_args,
+ CET_CHARSET_ASCII, 0 /* CET-REVIEW */
+};